home *** CD-ROM | disk | FTP | other *** search
/ CD/PC Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / V45KZE (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  1.2 KB  |  17 lines

  1. package com.sun.java.swing.plaf.metal;
  2.  
  3. import com.sun.java.swing.JTextField;
  4. import com.sun.java.swing.plaf.basic.BasicComboBoxEditor;
  5. import java.awt.Insets;
  6.  
  7. public class MetalComboBoxEditor extends BasicComboBoxEditor {
  8.    protected static Insets editorBorderInsets = new Insets(2, 2, 2, 0);
  9.  
  10.    public MetalComboBoxEditor() {
  11.       super.editor.removeFocusListener(this);
  12.       super.editor = new JTextField("", 9);
  13.       super.editor.setBorder(new EditorBorder(this));
  14.       super.editor.addFocusListener(this);
  15.    }
  16. }
  17.